home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-12-27 | 344 b | 21 lines | [TEXT/CWIE] |
- //
- // CClubMaker.h
- //
- // class CClubMaker
- // A juggling club.
- // Implimented as a Tri-Grid.
- //
- // by James Jennings
- // Started November 23, 1995
- //
-
- #pragma once
-
- #include "CObjectMaker.h"
-
- class CClubMaker : public CObjectMaker<TQ3GeometryObject> {
- public:
- virtual void Make();
- void GetCenterOfGravity(TQ3Point3D &com); // not used yet
- };
-